home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 April / PCWorld_2007-04_cd.bin / audio-video / kmplayer / kmp.exe / Shader / Deinterlace (blend).txt < prev    next >
Text File  |  2006-09-10  |  447b  |  25 lines

  1. // deinterlace (blend)=ps_2_0
  2. // Code from MPC
  3.  
  4. sampler s0 : register(s0);
  5. float4 p0 : register(c0);
  6.  
  7. #define width (p0[0])
  8. #define height (p0[1])
  9. #define counter (p0[2])
  10. #define clock (p0[3])
  11.  
  12. #define PI acos(-1)
  13.  
  14. float4 main(float2 tex : TEXCOORD0) : COLOR
  15. {
  16.     float4 c0 = tex2D(s0, tex);
  17.  
  18.     float2 h = float2(0, 1/height);
  19.     float4 c1 = tex2D(s0, tex-h);
  20.     float4 c2 = tex2D(s0, tex+h);
  21.     c0 = (c0*2+c1+c2)/4;
  22.  
  23.     return c0;
  24. }
  25.